home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / liboctave / Array3-idx.h < prev    next >
C/C++ Source or Header  |  1996-03-03  |  1KB  |  57 lines

  1. // Template array classes
  2. /*
  3.  
  4. Copyright (C) 1996 John W. Eaton
  5.  
  6. This file is part of Octave.
  7.  
  8. Octave is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the
  10. Free Software Foundation; either version 2, or (at your option) any
  11. later version.
  12.  
  13. Octave is distributed in the hope that it will be useful, but WITHOUT
  14. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Octave; see the file COPYING.  If not, write to the Free
  20. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  21.  
  22. */
  23.  
  24. #include "Array-flags.h"
  25. #include "idx-vector.h"
  26. #include "lo-error.h"
  27.  
  28. template <class T>
  29. void
  30. Array3<T>::maybe_delete_elements (idx_vector&, idx_vector&, idx_vector&)
  31. {
  32.   assert (0);
  33. }
  34.  
  35. template <class T>
  36. Array3<T>
  37. Array3<T>::value (void)
  38. {
  39.   Array3<T> retval;
  40.   assert (0);
  41.   return retval;
  42. }
  43.  
  44. template <class LT, class RT>
  45. int
  46. assign (Array3<LT>&, const Array3<RT>&)
  47. {
  48.   assert (0);
  49.   return 0;
  50. }
  51.  
  52. /*
  53. ;;; Local Variables: ***
  54. ;;; mode: C++ ***
  55. ;;; End: ***
  56. */
  57.